home *** CD-ROM | disk | FTP | other *** search
/ Mastering Web Site Development / Microsoft Mastering Web Site Development (Microsoft) (1997).iso / Media / Ch03 / W03D004.cc2 < prev    next >
Text File  |  1997-04-24  |  2KB  |  30 lines

  1. 0, In this demonstration, you will see how to use the 
  2. 5, ODBC configuration utility to create a data 
  3. 9, source name. To start the ODBC utility, from the 
  4. 12, Control Panel double-click the ODBC icon. The ODBC Data 
  5. 18, Source Admininstrator displays the data source 
  6. 20, names currently defined on this system. The User DSNs 
  7. 25, are names that are local to a computer and may 
  8. 28, only be used by the current user. We'll create a 
  9. 31, System DSN which will be available to any user. To 
  10. 36, add a DSN, click Add, select the driver for your 
  11. 42, database, you must have the appropriate ODBC driver 
  12. 47, for your database, I'll choose SQL Server, and 
  13. 50, click Finish. Here, I'll enter a name for the data 
  14. 54, source, we'll call this StateU2, and a description ù 
  15. 60, Class Database ù and the name of the server, the SQL 
  16. 66, server, that has this database. If I click 
  17. 72, Options, I can specify which database on that server I 
  18. 78, want to access. And click OK. Now I've added a new 
  19. 86, data source name to my system. In addition to 
  20. 91, creating system DSNs, you can create file DSNs. When 
  21. 95, you create a file DSN, the information is saved to 
  22. 99, a text file rather than to the registry. When you 
  23. 103, add a data connection in Visual InterDev, you can 
  24. 106, use either type of DSN. So in this demonstration, 
  25. 112, you have seen how to use the ODBC Data Source 
  26. 115, Administrator to create a data source name. Now that 
  27. 119, you have a data source name defined in Visual 
  28. 122, InterDev, you can add a data connection to your 
  29. 125, project.
  30. 129, END